table of contents
DROPUSER(1) | PostgreSQL 9.2.24 Documentation | DROPUSER(1) |
NAME¶
dropuser - remove a PostgreSQL user account
SYNOPSIS¶
dropuser [connection-option...] [option...] [username]
DESCRIPTION¶
dropuser removes an existing PostgreSQL user. Only superusers and users with the CREATEROLE privilege can remove PostgreSQL users. (To remove a superuser, you must yourself be a superuser.)
dropuser is a wrapper around the SQL command DROP ROLE (DROP_ROLE(7)). There is no effective difference between dropping users via this utility and via other methods for accessing the server.
OPTIONS¶
dropuser accepts the following command-line arguments:
username
-e, --echo
-i, --interactive
-V, --version
--if-exists
-?, --help
dropuser also accepts the following command-line arguments for connection parameters:
-h host, --host=host
-p port, --port=port
-U username, --username=username
-w, --no-password
-W, --password
This option is never essential, since dropuser will automatically prompt for a password if the server demands password authentication. However, dropuser will waste a connection attempt finding out that the server wants a password. In some cases it is worth typing -W to avoid the extra connection attempt.
ENVIRONMENT¶
PGHOST, PGPORT, PGUSER
This utility, like most other PostgreSQL utilities, also uses the environment variables supported by libpq (see Section 31.14, “Environment Variables”, in the documentation).
DIAGNOSTICS¶
In case of difficulty, see DROP ROLE (DROP_ROLE(7)) and psql(1) for discussions of potential problems and error messages. The database server must be running at the targeted host. Also, any default connection settings and environment variables used by the libpq front-end library will apply.
EXAMPLES¶
To remove user joe from the default database server:
$ dropuser joe
To remove user joe using the server on host eden, port 5000, with verification and a peek at the underlying command:
$ dropuser -p 5000 -h eden -i -e joe Role "joe" will be permanently removed. Are you sure? (y/n) y DROP ROLE joe;
SEE ALSO¶
createuser(1), DROP ROLE (DROP_ROLE(7))
2017-11-06 | PostgreSQL 9.2.24 |